home *** CD-ROM | disk | FTP | other *** search
- global gMovieSprite, gMovieDuration, gReturnFrame, gCurrentFrame, gControlSprite1, gControlSprite2, gControlSprite3, gPauseSprite, gFirstTime
-
- on startMovie
- set gMovieSprite to 20
- set gControlSprite1 to 7
- set gControlSprite2 to 8
- set gControlSprite3 to 9
- set gPauseSprite to 10
- set the exitLock to 1
- end
-
- on legalButton whichSprite
- repeat while the stillDown
- updateStage()
- end repeat
- return 1
- end
-
- on stopAllQT
- repeat with x = 1 to 48
- if the type of sprite x > 0 then
- if the castType of cast the castNum of sprite x = #digitalVideo then
- set the movieRate of sprite x to 0
- end if
- end if
- end repeat
- end
-
- on find whichCast, startFrame, endFrame
- repeat with x = startFrame to endFrame
- go(x)
- repeat with y = 1 to 48
- if the type of sprite y > 0 then
- if the castNum of sprite y = whichCast then
- put "Cast member " & whichCast & " was found in frame " & x & ", in channel " & y & "."
- end if
- end if
- end repeat
- end repeat
- end
-
- on delayFor howLong
- set howLong to the timer + howLong
- repeat while the timer < howLong
- updateStage()
- end repeat
- end
-
- on pressButton whichSprite, whichSound, whichCast1, whichCast2, whichFrame
- stopAllQT()
- puppetSound(whichSound)
- repeat with x = 1 to 2
- set the castNum of sprite whichSprite to the number of cast whichCast1
- updateStage()
- delayFor(10)
- set the castNum of sprite whichSprite to the number of cast whichCast2
- updateStage()
- delayFor(10)
- end repeat
- repeat while the soundBusy of 1
- updateStage()
- end repeat
- blackFrame(whichFrame)
- end
-
- on blackFrame whichFrame
- if the frame <> label("BlackFrame") then
- repeat with x = 1 to 48
- if the type of sprite x > 0 then
- set the locV of sprite x to -500
- end if
- end repeat
- updateStage()
- end if
- if whichFrame > 0 then
- go(whichFrame)
- end if
- puppetSound(0)
- end
-
- on advanceToCurrentFrame
- repeat while the mouseDown
- updateStage()
- end repeat
- if gCurrentFrame > 6 then
- set gCurrentFrame to 0
- end if
- set the visible of sprite 7 to 0
- set the visible of sprite 8 to 0
- set the visible of sprite 9 to 0
- blackFrame("story" & string(gCurrentFrame))
- set gFirstTime to 1
- end
-
- on FadeToBlackFrame
- repeat with x = 1 to 48
- set the locV of sprite x to -500
- end repeat
- puppetTransition(50, 0, 12)
- updateStage()
- puppetTransition(0)
- end
-